home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
biz
/
dopus
/
WolleDOpus.lha
/
wolledopus
/
c
/
FT
< prev
next >
Wrap
Text File
|
1997-10-20
|
1KB
|
55 lines
/*
$VER: FT 0.98 (20.10.1997) © Marco Wollkopf
E-Mail: Marco.Wollkopf@t-online.de
Homepage: http://home.t-online.de/home/Marco.Wollkopf
*/
signal on error
options results
/*-- Port holen --*/
if show("p","DOPUS.1") then
address DOPUS.1
else do
say "DirectoryOpus Port nicht gefunden"
exit
end
/*-- Parser --*/
parse arg file
file=strip(strip(file,'b','"'),'b',' ')
if file~="" then do
if file="?" then do
call error
end
else do
file= '"'||file||'"'
dopus getfiletype file
if result="" then
call error2
else
say result
exit
end
end
else
call error
end
exit
/*-- Fehler --*/
error:
SAY "FT (FileType) V0.98, Teil des WolleDOpus Paketes"||D2C(10)||"ermittelt Dateityp der angewählten Datei"||D2C(10)||"Copyright © 1997 Marco Wollkopf"
SAY D2C(10)||"Optionen: FILE/A"
SAY D2C(10)||"FILE: Datei, deren Typ ermittelt werden soll"
SAY D2C(10)||"Hilfe mit ?"
exit
return
error2:
say "DOpus kann den Dateityp nicht erkennen"
call error
exit
return